home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / amos / AMOSL0495.lzh / AMOSLIST / 000125_amos-request@svcs1.digex.net_Wed Apr 26 13:59:56 1995.msg < prev    next >
Internet Message Format  |  1995-05-01  |  3KB

  1. Received: from svcs1.digex.net by nfs2.digex.net with SMTP id AA02016
  2.   (5.67b8/IDA-1.5); Wed, 26 Apr 1995 13:59:54 -0400
  3. Received: by svcs1.digex.net id AA01315
  4.   (5.67b8/IDA-1.5 for amos-out); Wed, 26 Apr 1995 08:09:16 -0400
  5. Received: from nfs2.digex.net by svcs1.digex.net with SMTP id AA01308
  6.   (5.67b8/IDA-1.5 for <amos@svcs1.digex.net>); Wed, 26 Apr 1995 08:09:14 -0400
  7. Received: from nzambi.qub.ac.uk by nfs2.digex.net with SMTP id AA10798
  8.   (5.67b8/IDA-1.5 for <amos-list@access.digex.net>); Wed, 26 Apr 1995 08:08:54 -0400
  9. Received: from athmail1.causeway.qub.ac.uk by Nzambi.qub.ac.uk with SMTP (PP);
  10.           Wed, 26 Apr 1995 12:07:00 +0000
  11. Received: from bot39.causeway.qub.ac.uk by athmail1.causeway.qub.ac.uk 
  12.           with SMTP    id AA09367; Wed, 26 Apr 1995 13:05:38 +0100
  13. Received: by bot39.causeway.qub.ac.uk (5.65/4.7) id AA03732;
  14.           Wed, 26 Apr 1995 13:05:35 +0100
  15. Message-Id: <9504261205.AA03732@bot39.causeway.qub.ac.uk>
  16. To: amos-list@access.digex.net
  17. Subject: Re: Help Needed 
  18. In-Reply-To: Your message of "Tue, 25 Apr 95 09:14:03 BST."             <199504250814.JAA16727@willow.soton.ac.uk> 
  19. Date: Wed, 26 Apr 95 13:05:33 EDT
  20. From: Daithi Padraig Ocuinn <U9435409@queens-belfast.ac.uk>
  21. Status: RO
  22. X-Status: 
  23.  
  24. You wrote:
  25.  
  26. >I've been muppeting around with Bob Draw, Bob Update, Screen Swap,
  27. >Autoback, Double Buffer, Wait Vbls etc until I`m going completely mad.
  28. >Would some kind, generous soul like to vounteer to help? All I need is
  29. >for someone to stick in the Bob Update's etc in my program in the
  30. >right places, as no matter what I do, I still get flickering. Help!
  31.  
  32.  
  33. I think somehing like this would work.
  34.  
  35. Screen Open 0,320,256,16,Lowres ( or whatever )
  36. Double Buffer
  37. Bob Update Off
  38.  
  39. Do
  40.  
  41. For t=1 to number of bobs
  42. Bob t,x,y,t
  43. next t                     (ie place all your BOBS)
  44.  
  45. Bob Draw
  46. Wait Vbl
  47. Screen Swap
  48.  
  49. Loop
  50.  
  51. ------
  52.  
  53. The Bob t,x,y,t command will fix the place of the bob, but not
  54. display it. That will only happen when the bob draw command is
  55. called, and as it displays on the logical screen there should
  56. be no flicker, especially when combined with Screen Swap.
  57.  
  58. However, I have no access to my Amiga at the minute, so I
  59. am not 100% sure that the above will be flicker free.
  60. Don`t worry about Bob Clear.
  61.  
  62. And now, a problem of my own:
  63.  
  64. In the Amos Pro manual it says that a command like
  65. Randomize 8
  66. will set the random number generator to produce the
  67. same sets of numbers every time. Yet, it does not on my
  68. A1200. Why? (although I think I know - it`s another
  69. Amos `feature` no doubt)
  70.  
  71.  
  72. D.P.O`Cuinn